home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem This program takes 3dland_a.exe and moves it to the directory
- rem specified by %1%2 then runs 3dland_a.exe. Next it erases 3dland_a.exe
- rem from %1%2 and displays the file readme.
- rem
- rem 3dland_a.exe is just a auto-expanding zip file.
- rem
- rem This is the original Installation program provided by Paul Bloomquist
- rem and should not be modified unless prior concent is given, however you
- rem do not need to include this instalation program when 3d_landscape is
- rem distributed to other people.
- rem --------------------------------------------------------------------------
- if "%1"=="" goto error
- if "%2"=="" goto error
- cls
- echo ═══════════════════════════════════════════════════════════════════
- echo You have chosen to install 3d_landscape into...
- echo %1%2
- echo If this is NOT what you want then type ctrl-c now.
- echo ═══════════════════════════════════════════════════════════════════
- pause
- md %1%2
- copy 3dland_a.exe %1%2 /v
- %1
- cd %2
- 3dland_a.exe
- erase 3dland_a.exe
- cls
- type readme
- goto exit
- :error
- cls
- echo ╔═══════════════════════════════════════════════════════════════════╗
- echo ║ ║
- echo ║ Install needs the drive and directory you wish to install ║
- echo ║ the program into. ║
- echo ║ ║
- echo ║ install c: \3d_land ║
- echo ║ ║
- echo ║ (will install 3d_landscape into drive c in the directory called ║
- echo ║ 3d_land, make sure you have a space between the drive letter ║
- echo ║ and the directory.) ║
- echo ║ ║
- echo ╚═══════════════════════════════════════════════════════════════════╝
- goto exit
- :exit
-